home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / DragClick / Sources / GestaltStuff.h < prev    next >
Text File  |  1996-06-21  |  381b  |  22 lines

  1. #ifndef __GESTALTSTUFF__
  2. #define __GESTALTSTUFF__
  3.  
  4. #ifndef __GESTALT__
  5. #include <Gestalt.h>
  6. #endif
  7.  
  8. extern Boolean gHasProcessMgr;
  9.  
  10. Boolean HasProcessMgr();
  11. Boolean HasGestaltAttribute(OSType attr, short itsBit);
  12.  
  13.  
  14. inline Boolean HasProcessMgr()
  15. {
  16.     if (!gHasProcessMgr)
  17.         gHasProcessMgr = HasGestaltAttribute(gestaltOSAttr, gestaltLaunchControl);
  18.     return gHasProcessMgr;
  19. }
  20.  
  21.  
  22. #endif